home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 426_01 / gio.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-25  |  261 b   |  20 lines

  1. #define GIO_STDIN    0
  2. #define    GIO_STDOUT    1
  3. #define    GIO_STDERR    2
  4. #define    GIO_FILE    3
  5. #define GIO_MSGQ    4
  6.  
  7.  
  8. typedef    struct {
  9.     int    iotype;
  10.     int    stdio;
  11.     FILE    *fp;
  12.     } GIO;
  13.  
  14.  
  15. GIO * greopen( );
  16. GIO * gopen( );
  17. int gclose( );
  18. int gputs( );
  19. int gread( );
  20.